home *** CD-ROM | disk | FTP | other *** search
/ NOVA - For the NeXT Workstation / NOVA - For the NeXT Workstation.iso / Apps / Utilities / Unix / WhosOnFirst / IconView.h < prev    next >
Text File  |  1992-12-26  |  649b  |  27 lines

  1.  
  2. /* IconView.h */
  3.  
  4. #import <appkit/View.h>
  5. #import "Talk.h"
  6. #import "InfoMgr.h"
  7.  
  8. extern id InfoManager;        /* Get info/preferences */
  9.  
  10. @interface IconView:View
  11. {
  12.     char username[10];    /* User name to display in Icon */
  13.     char ttyname[10];    /* TTY name to display */
  14.     char hostname[64];    /* Hostname to display */
  15.     Talk *myTalk;
  16. }
  17.  
  18. - init;
  19. - free;
  20. - drawSelf:(const NXRect *)rects :(int)rectCount;
  21. - mouseDown:(NXEvent *)theEvent;
  22. - iconSetTty: (const char *) tty;    /* Set instance variable ttyname */
  23. - iconSetName: (const char *) name;    /* Set instance variable username */
  24. - iconSetHostName: (const char *) name;    /* Set instance variable hostname */
  25.  
  26. @end
  27.